home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 4_0 / L_CHSRC_ / TEXT.H < prev    next >
Text File  |  1989-11-08  |  1KB  |  32 lines

  1. /********************************************************************************
  2.  *    text.h
  3.  *
  4.  *    Text Window Management Header
  5.  *
  6.  *    ⌐1989, Motorola Inc.  All rights reserved.
  7.  ********************************************************************************/
  8.  
  9. #define _H_text
  10.  
  11.  
  12. /* External Function Prototypes
  13.  */
  14. #ifdef PROTOTYPES
  15. WindowPtr TextWindow (WORD windID, WORD top, WORD left, Boolean isActive);
  16. void TextAdjust (WindowPtr theWindow);
  17. void TextWindReset (WindowPtr theWindow);
  18.  
  19. void TextContent (WindowPtr theWindow, WORD theMods, Point thePoint);
  20. void TextActivate (Boolean isActive, WindowPtr theWindow);
  21. void TextUpdate (WindowPtr theWindow);
  22. void TextPutText (BYTE *theText, LONG theLen, WindowPtr theWindow);
  23.  
  24. void TextDoScroll (WindowPtr theWindow, ControlHandle theControl, WORD thePart, Point thePoint);
  25. pascal void TextScrollProc (ControlHandle theControl, WORD thePart);
  26. void TextCalcScroll (WindowPtr theWindow);
  27.  
  28. void TextScroll (WORD dh, WORD dv, TEHandle teHdl);
  29. void TextScrollTo (WORD h, WORD v, WindowPtr theWindow);
  30. void TextSelView (WindowPtr theWindow);
  31. #endif
  32.